home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / qdeck / kern / makefile < prev    next >
Encoding:
Makefile  |  1994-08-11  |  362 b   |  32 lines

  1. #
  2. # QOS Makefile for DJGPP.
  3. #
  4.  
  5. CFLAGS= -O -c -DMSDOS
  6.  
  7. all: makefile.tag scale.exe
  8.  
  9. .c.o:
  10.     gcc $(CFLAGS) $<
  11.  
  12. O = scale.o
  13.  
  14. L = -lx11 -lsys -lc -lm
  15.  
  16. scale.exe : $(O)
  17.     gcc -o scale $(O) $(L)
  18.     strip scale
  19.     coff2exe scale
  20.     del scale
  21.  
  22.  
  23. makefile.tag:
  24.     del *.tag
  25.     del *.obj
  26.     del *.map
  27.     del *.exp
  28.     del *.exe
  29.     del *.rsp
  30.     echo >makefile.tag
  31.  
  32.